home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fdopen.c < prev    next >
C/C++ Source or Header  |  1989-05-16  |  3KB  |  110 lines

  1. /* 
  2.  * fdopen.c --
  3.  *
  4.  *    Source code for the "fdopen" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fdopen.c,v 1.5 88/10/01 10:18:08 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include "fileInt.h"
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * fdopen --
  28.  *
  29.  *    This procedure initializes a FILE structure for a file (or pipe
  30.  *    or similar OS-supplied thing) that has been opened or inherited
  31.  *    through some other mechanism.
  32.  *
  33.  * Results:
  34.  *    The return value may be used to perform buffered I/O on
  35.  *    streamID.  If streamID isn't valid, then NULL is returned.
  36.  *
  37.  * Side effects:
  38.  *    The internal list stdioFileStreams gets a new element.
  39.  *
  40.  * Implementation Warning:
  41.  *    To be compatible with BSD, this procedure must permit multiple
  42.  *    streams on the same file stream!  This seems like a very bad
  43.  *    idea for a seekable stream, but seems to get used for network
  44.  *    connection.
  45.  *
  46.  *----------------------------------------------------------------------
  47.  */
  48.  
  49. FILE *
  50. fdopen(streamID, access)
  51.     int streamID;        /* Index of a stream identifier, such as
  52.                  * returned by open.  */
  53.     char *access;        /* Indicates the type of access to be
  54.                  * made on streamID, just as in fopen.
  55.                  * Must match the permissions on streamID.  */
  56. {
  57.     register FILE *     stream;
  58.     int         read, write;
  59.  
  60.     if (streamID < 0) {
  61.     return NULL;
  62.     }
  63.  
  64.     /*
  65.      * If this is for stdin, stdout, or stderr, try to use the standard
  66.      * FILE, unless it's already in use.  Otherwise allocate a new
  67.      * FILE structure.
  68.      */
  69.  
  70.     if (streamID <= 2) {
  71.     if (streamID == 0) {
  72.         stream = stdin;
  73.     } else if (streamID == 1) {
  74.         stream = stdout;
  75.     } else if (streamID == 2) {
  76.         stream = stderr;
  77.     }
  78.     if (stream->flags == 0) {
  79.         goto gotStream;
  80.     }
  81.     }
  82.     stream = (FILE *) malloc(sizeof(FILE));
  83.     stream->nextPtr = stdioFileStreams;
  84.     stdioFileStreams = stream;
  85.  
  86.     gotStream:
  87.     read = write = 0;
  88.     if ((access[1] == '+') || ((access[1] == 'b') && (access[2] == '+'))) {
  89.     read = write = 1;
  90.     } else if (access[0]  == 'r') {
  91.     read = 1;
  92.     } else {
  93.     write = 1;
  94.     }
  95.  
  96.     /*
  97.      * Seek to the end of the file if we're in append mode (I'm not sure
  98.      * this should be necessary, but UNIX programs seem to depend on it).
  99.      */
  100.  
  101.     if (access[0] == 'a') {
  102.     (void) lseek(streamID, 0, 2);
  103.     }
  104.  
  105.     Stdio_Setup(stream, read, write, stdioTempBuffer, 0,
  106.         StdioFileReadProc, StdioFileWriteProc, StdioFileCloseProc,
  107.         (ClientData) streamID);
  108.     return(stream);
  109. }
  110.